home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / lib / python2.5 / pdb.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2008-10-29  |  41KB  |  1,279 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.5)
  3.  
  4. '''A Python debugger.'''
  5. import sys
  6. import linecache
  7. import cmd
  8. import bdb
  9. from repr import Repr
  10. import os
  11. import re
  12. import pprint
  13. import traceback
  14. _repr = Repr()
  15. _repr.maxstring = 200
  16. _saferepr = _repr.repr
  17. __all__ = [
  18.     'run',
  19.     'pm',
  20.     'Pdb',
  21.     'runeval',
  22.     'runctx',
  23.     'runcall',
  24.     'set_trace',
  25.     'post_mortem',
  26.     'help']
  27.  
  28. def find_function(funcname, filename):
  29.     cre = re.compile('def\\s+%s\\s*[(]' % funcname)
  30.     
  31.     try:
  32.         fp = open(filename)
  33.     except IOError:
  34.         return None
  35.  
  36.     lineno = 1
  37.     answer = None
  38.     while None:
  39.         line = fp.readline()
  40.         if line == '':
  41.             break
  42.         
  43.         if cre.match(line):
  44.             answer = (funcname, filename, lineno)
  45.             break
  46.         
  47.         lineno = lineno + 1
  48.         continue
  49.         return answer
  50.  
  51. line_prefix = '\n-> '
  52.  
  53. class Pdb(bdb.Bdb, cmd.Cmd):
  54.     
  55.     def __init__(self, completekey = 'tab', stdin = None, stdout = None):
  56.         bdb.Bdb.__init__(self)
  57.         cmd.Cmd.__init__(self, completekey, stdin, stdout)
  58.         if stdout:
  59.             self.use_rawinput = 0
  60.         
  61.         self.prompt = '(Pdb) '
  62.         self.aliases = { }
  63.         self.mainpyfile = ''
  64.         self._wait_for_mainpyfile = 0
  65.         
  66.         try:
  67.             import readline
  68.         except ImportError:
  69.             pass
  70.  
  71.         self.rcLines = []
  72.         if 'HOME' in os.environ:
  73.             envHome = os.environ['HOME']
  74.             
  75.             try:
  76.                 rcFile = open(os.path.join(envHome, '.pdbrc'))
  77.             except IOError:
  78.                 pass
  79.  
  80.             for line in rcFile.readlines():
  81.                 self.rcLines.append(line)
  82.             
  83.             rcFile.close()
  84.         
  85.         
  86.         try:
  87.             rcFile = open('.pdbrc')
  88.         except IOError:
  89.             pass
  90.  
  91.         for line in rcFile.readlines():
  92.             self.rcLines.append(line)
  93.         
  94.         rcFile.close()
  95.         self.commands = { }
  96.         self.commands_doprompt = { }
  97.         self.commands_silent = { }
  98.         self.commands_defining = False
  99.         self.commands_bnum = None
  100.  
  101.     
  102.     def reset(self):
  103.         bdb.Bdb.reset(self)
  104.         self.forget()
  105.  
  106.     
  107.     def forget(self):
  108.         self.lineno = None
  109.         self.stack = []
  110.         self.curindex = 0
  111.         self.curframe = None
  112.  
  113.     
  114.     def setup(self, f, t):
  115.         self.forget()
  116.         (self.stack, self.curindex) = self.get_stack(f, t)
  117.         self.curframe = self.stack[self.curindex][0]
  118.         self.execRcLines()
  119.  
  120.     
  121.     def execRcLines(self):
  122.         if self.rcLines:
  123.             rcLines = self.rcLines
  124.             self.rcLines = []
  125.             for line in rcLines:
  126.                 line = line[:-1]
  127.                 if len(line) > 0 and line[0] != '#':
  128.                     self.onecmd(line)
  129.                     continue
  130.             
  131.         
  132.  
  133.     
  134.     def user_call(self, frame, argument_list):
  135.         '''This method is called when there is the remote possibility
  136.         that we ever need to stop in this function.'''
  137.         if self._wait_for_mainpyfile:
  138.             return None
  139.         
  140.         if self.stop_here(frame):
  141.             print >>self.stdout, '--Call--'
  142.             self.interaction(frame, None)
  143.         
  144.  
  145.     
  146.     def user_line(self, frame):
  147.         '''This function is called when we stop or break at this line.'''
  148.         if self._wait_for_mainpyfile:
  149.             if self.mainpyfile != self.canonic(frame.f_code.co_filename) or frame.f_lineno <= 0:
  150.                 return None
  151.             
  152.             self._wait_for_mainpyfile = 0
  153.         
  154.         if self.bp_commands(frame):
  155.             self.interaction(frame, None)
  156.         
  157.  
  158.     
  159.     def bp_commands(self, frame):
  160.         ''' Call every command that was set for the current active breakpoint (if there is one)
  161.         Returns True if the normal interaction function must be called, False otherwise '''
  162.         if getattr(self, 'currentbp', False) and self.currentbp in self.commands:
  163.             currentbp = self.currentbp
  164.             self.currentbp = 0
  165.             lastcmd_back = self.lastcmd
  166.             self.setup(frame, None)
  167.             for line in self.commands[currentbp]:
  168.                 self.onecmd(line)
  169.             
  170.             self.lastcmd = lastcmd_back
  171.             if not self.commands_silent[currentbp]:
  172.                 self.print_stack_entry(self.stack[self.curindex])
  173.             
  174.             if self.commands_doprompt[currentbp]:
  175.                 self.cmdloop()
  176.             
  177.             self.forget()
  178.             return None
  179.         
  180.         return 1
  181.  
  182.     
  183.     def user_return(self, frame, return_value):
  184.         '''This function is called when a return trap is set here.'''
  185.         frame.f_locals['__return__'] = return_value
  186.         print >>self.stdout, '--Return--'
  187.         self.interaction(frame, None)
  188.  
  189.     
  190.     def user_exception(self, frame, .2):
  191.         '''This function is called if an exception occurs,
  192.         but only if we are to stop at or just below this level.'''
  193.         (exc_type, exc_value, exc_traceback) = .2
  194.         frame.f_locals['__exception__'] = (exc_type, exc_value)
  195.         if type(exc_type) == type(''):
  196.             exc_type_name = exc_type
  197.         else:
  198.             exc_type_name = exc_type.__name__
  199.         print >>self.stdout, exc_type_name + ':', _saferepr(exc_value)
  200.         self.interaction(frame, exc_traceback)
  201.  
  202.     
  203.     def interaction(self, frame, traceback):
  204.         self.setup(frame, traceback)
  205.         self.print_stack_entry(self.stack[self.curindex])
  206.         self.cmdloop()
  207.         self.forget()
  208.  
  209.     
  210.     def default(self, line):
  211.         if line[:1] == '!':
  212.             line = line[1:]
  213.         
  214.         locals = self.curframe.f_locals
  215.         globals = self.curframe.f_globals
  216.         
  217.         try:
  218.             code = compile(line + '\n', '<stdin>', 'single')
  219.             exec code in globals, locals
  220.         except:
  221.             (t, v) = sys.exc_info()[:2]
  222.             if type(t) == type(''):
  223.                 exc_type_name = t
  224.             else:
  225.                 exc_type_name = t.__name__
  226.             print >>self.stdout, '***', exc_type_name + ':', v
  227.  
  228.  
  229.     
  230.     def precmd(self, line):
  231.         """Handle alias expansion and ';;' separator."""
  232.         if not line.strip():
  233.             return line
  234.         
  235.         args = line.split()
  236.         while args[0] in self.aliases:
  237.             line = self.aliases[args[0]]
  238.             ii = 1
  239.             for tmpArg in args[1:]:
  240.                 line = line.replace('%' + str(ii), tmpArg)
  241.                 ii = ii + 1
  242.             
  243.             line = line.replace('%*', ' '.join(args[1:]))
  244.             args = line.split()
  245.         if args[0] != 'alias':
  246.             marker = line.find(';;')
  247.             if marker >= 0:
  248.                 next = line[marker + 2:].lstrip()
  249.                 self.cmdqueue.append(next)
  250.                 line = line[:marker].rstrip()
  251.             
  252.         
  253.         return line
  254.  
  255.     
  256.     def onecmd(self, line):
  257.         '''Interpret the argument as though it had been typed in response
  258.         to the prompt.
  259.  
  260.         Checks whether this line is typed at the normal prompt or in
  261.         a breakpoint command list definition.
  262.         '''
  263.         if not self.commands_defining:
  264.             return cmd.Cmd.onecmd(self, line)
  265.         else:
  266.             return self.handle_command_def(line)
  267.  
  268.     
  269.     def handle_command_def(self, line):
  270.         ''' Handles one command line during command list definition. '''
  271.         (cmd, arg, line) = self.parseline(line)
  272.         if cmd == 'silent':
  273.             self.commands_silent[self.commands_bnum] = True
  274.             return None
  275.         elif cmd == 'end':
  276.             self.cmdqueue = []
  277.             return 1
  278.         
  279.         cmdlist = self.commands[self.commands_bnum]
  280.         if arg:
  281.             cmdlist.append(cmd + ' ' + arg)
  282.         else:
  283.             cmdlist.append(cmd)
  284.         
  285.         try:
  286.             func = getattr(self, 'do_' + cmd)
  287.         except AttributeError:
  288.             func = self.default
  289.  
  290.         if func.func_name in self.commands_resuming:
  291.             self.commands_doprompt[self.commands_bnum] = False
  292.             self.cmdqueue = []
  293.             return 1
  294.         
  295.  
  296.     do_h = cmd.Cmd.do_help
  297.     
  298.     def do_commands(self, arg):
  299.         '''Defines a list of commands associated to a breakpoint
  300.         Those commands will be executed whenever the breakpoint causes the program to stop execution.'''
  301.         if not arg:
  302.             bnum = len(bdb.Breakpoint.bpbynumber) - 1
  303.         else:
  304.             
  305.             try:
  306.                 bnum = int(arg)
  307.             except:
  308.                 print >>self.stdout, 'Usage : commands [bnum]\n        ...\n        end'
  309.                 return None
  310.  
  311.         self.commands_bnum = bnum
  312.         self.commands[bnum] = []
  313.         self.commands_doprompt[bnum] = True
  314.         self.commands_silent[bnum] = False
  315.         prompt_back = self.prompt
  316.         self.prompt = '(com) '
  317.         self.commands_defining = True
  318.         self.cmdloop()
  319.         self.commands_defining = False
  320.         self.prompt = prompt_back
  321.  
  322.     
  323.     def do_break(self, arg, temporary = 0):
  324.         if not arg:
  325.             if self.breaks:
  326.                 print >>self.stdout, 'Num Type         Disp Enb   Where'
  327.                 for bp in bdb.Breakpoint.bpbynumber:
  328.                     if bp:
  329.                         bp.bpprint(self.stdout)
  330.                         continue
  331.                 
  332.             
  333.             return None
  334.         
  335.         filename = None
  336.         lineno = None
  337.         cond = None
  338.         comma = arg.find(',')
  339.         if comma > 0:
  340.             cond = arg[comma + 1:].lstrip()
  341.             arg = arg[:comma].rstrip()
  342.         
  343.         colon = arg.rfind(':')
  344.         funcname = None
  345.         if colon >= 0:
  346.             filename = arg[:colon].rstrip()
  347.             f = self.lookupmodule(filename)
  348.             if not f:
  349.                 print >>self.stdout, '*** ', repr(filename),
  350.                 print >>self.stdout, 'not found from sys.path'
  351.                 return None
  352.             else:
  353.                 filename = f
  354.             arg = arg[colon + 1:].lstrip()
  355.             
  356.             try:
  357.                 lineno = int(arg)
  358.             except ValueError:
  359.                 msg = None
  360.                 print >>self.stdout, '*** Bad lineno:', arg
  361.                 return None
  362.             except:
  363.                 None<EXCEPTION MATCH>ValueError
  364.             
  365.  
  366.         None<EXCEPTION MATCH>ValueError
  367.         
  368.         try:
  369.             lineno = int(arg)
  370.         except ValueError:
  371.             
  372.             try:
  373.                 func = eval(arg, self.curframe.f_globals, self.curframe.f_locals)
  374.             except:
  375.                 func = arg
  376.  
  377.             
  378.             try:
  379.                 if hasattr(func, 'im_func'):
  380.                     func = func.im_func
  381.                 
  382.                 code = func.func_code
  383.                 funcname = code.co_name
  384.                 lineno = code.co_firstlineno
  385.                 filename = code.co_filename
  386.             (ok, filename, ln) = self.lineinfo(arg)
  387.             if not ok:
  388.                 print >>self.stdout, '*** The specified object',
  389.                 print >>self.stdout, repr(arg),
  390.                 print >>self.stdout, 'is not a function'
  391.                 print >>self.stdout, 'or was not found along sys.path.'
  392.                 return None
  393.             
  394.  
  395.             funcname = ok
  396.             lineno = int(ln)
  397.         
  398.  
  399.         if not filename:
  400.             filename = self.defaultFile()
  401.         
  402.         line = self.checkline(filename, lineno)
  403.         if line:
  404.             err = self.set_break(filename, line, temporary, cond, funcname)
  405.             if err:
  406.                 print >>self.stdout, '***', err
  407.             else:
  408.                 bp = self.get_breaks(filename, line)[-1]
  409.                 print >>self.stdout, 'Breakpoint %d at %s:%d' % (bp.number, bp.file, bp.line)
  410.         
  411.  
  412.     
  413.     def defaultFile(self):
  414.         '''Produce a reasonable default.'''
  415.         filename = self.curframe.f_code.co_filename
  416.         if filename == '<string>' and self.mainpyfile:
  417.             filename = self.mainpyfile
  418.         
  419.         return filename
  420.  
  421.     do_b = do_break
  422.     
  423.     def do_tbreak(self, arg):
  424.         self.do_break(arg, 1)
  425.  
  426.     
  427.     def lineinfo(self, identifier):
  428.         failed = (None, None, None)
  429.         idstring = identifier.split("'")
  430.         if len(idstring) == 1:
  431.             id = idstring[0].strip()
  432.         elif len(idstring) == 3:
  433.             id = idstring[1].strip()
  434.         else:
  435.             return failed
  436.         if id == '':
  437.             return failed
  438.         
  439.         parts = id.split('.')
  440.         if parts[0] == 'self':
  441.             del parts[0]
  442.             if len(parts) == 0:
  443.                 return failed
  444.             
  445.         
  446.         fname = self.defaultFile()
  447.         if len(parts) == 1:
  448.             item = parts[0]
  449.         else:
  450.             f = self.lookupmodule(parts[0])
  451.             if f:
  452.                 fname = f
  453.             
  454.             item = parts[1]
  455.         answer = find_function(item, fname)
  456.         if not answer:
  457.             pass
  458.         return failed
  459.  
  460.     
  461.     def checkline(self, filename, lineno):
  462.         '''Check whether specified line seems to be executable.
  463.  
  464.         Return `lineno` if it is, 0 if not (e.g. a docstring, comment, blank
  465.         line or EOF). Warning: testing is not comprehensive.
  466.         '''
  467.         line = linecache.getline(filename, lineno)
  468.         if not line:
  469.             print >>self.stdout, 'End of file'
  470.             return 0
  471.         
  472.         line = line.strip()
  473.         if not line and line[0] == '#' and line[:3] == '"""' or line[:3] == "'''":
  474.             print >>self.stdout, '*** Blank or comment'
  475.             return 0
  476.         
  477.         return lineno
  478.  
  479.     
  480.     def do_enable(self, arg):
  481.         args = arg.split()
  482.         for i in args:
  483.             
  484.             try:
  485.                 i = int(i)
  486.             except ValueError:
  487.                 print >>self.stdout, 'Breakpoint index %r is not a number' % i
  488.                 continue
  489.  
  490.             if i <= i:
  491.                 pass
  492.             elif not i < len(bdb.Breakpoint.bpbynumber):
  493.                 print >>self.stdout, 'No breakpoint numbered', i
  494.                 continue
  495.             
  496.             bp = bdb.Breakpoint.bpbynumber[i]
  497.             if bp:
  498.                 bp.enable()
  499.                 continue
  500.             0
  501.         
  502.  
  503.     
  504.     def do_disable(self, arg):
  505.         args = arg.split()
  506.         for i in args:
  507.             
  508.             try:
  509.                 i = int(i)
  510.             except ValueError:
  511.                 print >>self.stdout, 'Breakpoint index %r is not a number' % i
  512.                 continue
  513.  
  514.             if i <= i:
  515.                 pass
  516.             elif not i < len(bdb.Breakpoint.bpbynumber):
  517.                 print >>self.stdout, 'No breakpoint numbered', i
  518.                 continue
  519.             
  520.             bp = bdb.Breakpoint.bpbynumber[i]
  521.             if bp:
  522.                 bp.disable()
  523.                 continue
  524.             0
  525.         
  526.  
  527.     
  528.     def do_condition(self, arg):
  529.         args = arg.split(' ', 1)
  530.         
  531.         try:
  532.             bpnum = int(args[0].strip())
  533.         except ValueError:
  534.             print >>self.stdout, 'Breakpoint index %r is not a number' % args[0]
  535.             return None
  536.  
  537.         
  538.         try:
  539.             cond = args[1]
  540.         except:
  541.             cond = None
  542.  
  543.         
  544.         try:
  545.             bp = bdb.Breakpoint.bpbynumber[bpnum]
  546.         except IndexError:
  547.             print >>self.stdout, 'Breakpoint index %r is not valid' % args[0]
  548.             return None
  549.  
  550.         if bp:
  551.             bp.cond = cond
  552.             if not cond:
  553.                 print >>self.stdout, 'Breakpoint', bpnum,
  554.                 print >>self.stdout, 'is now unconditional.'
  555.             
  556.         
  557.  
  558.     
  559.     def do_ignore(self, arg):
  560.         '''arg is bp number followed by ignore count.'''
  561.         args = arg.split()
  562.         
  563.         try:
  564.             bpnum = int(args[0].strip())
  565.         except ValueError:
  566.             print >>self.stdout, 'Breakpoint index %r is not a number' % args[0]
  567.             return None
  568.  
  569.         
  570.         try:
  571.             count = int(args[1].strip())
  572.         except:
  573.             count = 0
  574.  
  575.         
  576.         try:
  577.             bp = bdb.Breakpoint.bpbynumber[bpnum]
  578.         except IndexError:
  579.             print >>self.stdout, 'Breakpoint index %r is not valid' % args[0]
  580.             return None
  581.  
  582.         if bp:
  583.             bp.ignore = count
  584.             if count > 0:
  585.                 reply = 'Will ignore next '
  586.                 if count > 1:
  587.                     reply = reply + '%d crossings' % count
  588.                 else:
  589.                     reply = reply + '1 crossing'
  590.                 print >>self.stdout, reply + ' of breakpoint %d.' % bpnum
  591.             else:
  592.                 print >>self.stdout, 'Will stop next time breakpoint',
  593.                 print >>self.stdout, bpnum, 'is reached.'
  594.         
  595.  
  596.     
  597.     def do_clear(self, arg):
  598.         '''Three possibilities, tried in this order:
  599.         clear -> clear all breaks, ask for confirmation
  600.         clear file:lineno -> clear all breaks at file:lineno
  601.         clear bpno bpno ... -> clear breakpoints by number'''
  602.         if not arg:
  603.             
  604.             try:
  605.                 reply = raw_input('Clear all breaks? ')
  606.             except EOFError:
  607.                 reply = 'no'
  608.  
  609.             reply = reply.strip().lower()
  610.             if reply in ('y', 'yes'):
  611.                 self.clear_all_breaks()
  612.             
  613.             return None
  614.         
  615.         if ':' in arg:
  616.             i = arg.rfind(':')
  617.             filename = arg[:i]
  618.             arg = arg[i + 1:]
  619.             
  620.             try:
  621.                 lineno = int(arg)
  622.             except ValueError:
  623.                 err = 'Invalid line number (%s)' % arg
  624.  
  625.             err = self.clear_break(filename, lineno)
  626.             if err:
  627.                 print >>self.stdout, '***', err
  628.             
  629.             return None
  630.         
  631.         numberlist = arg.split()
  632.         for i in numberlist:
  633.             
  634.             try:
  635.                 i = int(i)
  636.             except ValueError:
  637.                 print >>self.stdout, 'Breakpoint index %r is not a number' % i
  638.                 continue
  639.  
  640.             if i <= i:
  641.                 pass
  642.             elif not i < len(bdb.Breakpoint.bpbynumber):
  643.                 print >>self.stdout, 'No breakpoint numbered', i
  644.                 continue
  645.             
  646.             err = self.clear_bpbynumber(i)
  647.             if err:
  648.                 print >>self.stdout, '***', err
  649.                 continue
  650.             print >>self.stdout, 'Deleted breakpoint', i
  651.         
  652.  
  653.     do_cl = do_clear
  654.     
  655.     def do_where(self, arg):
  656.         self.print_stack_trace()
  657.  
  658.     do_w = do_where
  659.     do_bt = do_where
  660.     
  661.     def do_up(self, arg):
  662.         if self.curindex == 0:
  663.             print >>self.stdout, '*** Oldest frame'
  664.         else:
  665.             self.curindex = self.curindex - 1
  666.             self.curframe = self.stack[self.curindex][0]
  667.             self.print_stack_entry(self.stack[self.curindex])
  668.             self.lineno = None
  669.  
  670.     do_u = do_up
  671.     
  672.     def do_down(self, arg):
  673.         if self.curindex + 1 == len(self.stack):
  674.             print >>self.stdout, '*** Newest frame'
  675.         else:
  676.             self.curindex = self.curindex + 1
  677.             self.curframe = self.stack[self.curindex][0]
  678.             self.print_stack_entry(self.stack[self.curindex])
  679.             self.lineno = None
  680.  
  681.     do_d = do_down
  682.     
  683.     def do_step(self, arg):
  684.         self.set_step()
  685.         return 1
  686.  
  687.     do_s = do_step
  688.     
  689.     def do_next(self, arg):
  690.         self.set_next(self.curframe)
  691.         return 1
  692.  
  693.     do_n = do_next
  694.     
  695.     def do_return(self, arg):
  696.         self.set_return(self.curframe)
  697.         return 1
  698.  
  699.     do_r = do_return
  700.     
  701.     def do_continue(self, arg):
  702.         self.set_continue()
  703.         return 1
  704.  
  705.     do_c = do_cont = do_continue
  706.     
  707.     def do_jump(self, arg):
  708.         if self.curindex + 1 != len(self.stack):
  709.             print >>self.stdout, '*** You can only jump within the bottom frame'
  710.             return None
  711.         
  712.         
  713.         try:
  714.             arg = int(arg)
  715.         except ValueError:
  716.             print >>self.stdout, "*** The 'jump' command requires a line number."
  717.  
  718.         
  719.         try:
  720.             self.curframe.f_lineno = arg
  721.             self.stack[self.curindex] = (self.stack[self.curindex][0], arg)
  722.             self.print_stack_entry(self.stack[self.curindex])
  723.         except ValueError:
  724.             e = None
  725.             print >>self.stdout, '*** Jump failed:', e
  726.  
  727.  
  728.     do_j = do_jump
  729.     
  730.     def do_debug(self, arg):
  731.         sys.settrace(None)
  732.         globals = self.curframe.f_globals
  733.         locals = self.curframe.f_locals
  734.         p = Pdb(self.completekey, self.stdin, self.stdout)
  735.         p.prompt = '(%s) ' % self.prompt.strip()
  736.         print >>self.stdout, 'ENTERING RECURSIVE DEBUGGER'
  737.         sys.call_tracing(p.run, (arg, globals, locals))
  738.         print >>self.stdout, 'LEAVING RECURSIVE DEBUGGER'
  739.         sys.settrace(self.trace_dispatch)
  740.         self.lastcmd = p.lastcmd
  741.  
  742.     
  743.     def do_quit(self, arg):
  744.         self._user_requested_quit = 1
  745.         self.set_quit()
  746.         return 1
  747.  
  748.     do_q = do_quit
  749.     do_exit = do_quit
  750.     
  751.     def do_EOF(self, arg):
  752.         print >>self.stdout
  753.         self._user_requested_quit = 1
  754.         self.set_quit()
  755.         return 1
  756.  
  757.     
  758.     def do_args(self, arg):
  759.         f = self.curframe
  760.         co = f.f_code
  761.         dict = f.f_locals
  762.         n = co.co_argcount
  763.         if co.co_flags & 4:
  764.             n = n + 1
  765.         
  766.         if co.co_flags & 8:
  767.             n = n + 1
  768.         
  769.         for i in range(n):
  770.             name = co.co_varnames[i]
  771.             print >>self.stdout, name, '=',
  772.             if name in dict:
  773.                 print >>self.stdout, dict[name]
  774.                 continue
  775.             print >>self.stdout, '*** undefined ***'
  776.         
  777.  
  778.     do_a = do_args
  779.     
  780.     def do_retval(self, arg):
  781.         if '__return__' in self.curframe.f_locals:
  782.             print >>self.stdout, self.curframe.f_locals['__return__']
  783.         else:
  784.             print >>self.stdout, '*** Not yet returned!'
  785.  
  786.     do_rv = do_retval
  787.     
  788.     def _getval(self, arg):
  789.         
  790.         try:
  791.             return eval(arg, self.curframe.f_globals, self.curframe.f_locals)
  792.         except:
  793.             (t, v) = sys.exc_info()[:2]
  794.             if isinstance(t, str):
  795.                 exc_type_name = t
  796.             else:
  797.                 exc_type_name = t.__name__
  798.             print >>self.stdout, '***', exc_type_name + ':', repr(v)
  799.             raise 
  800.  
  801.  
  802.     
  803.     def do_p(self, arg):
  804.         
  805.         try:
  806.             print >>self.stdout, repr(self._getval(arg))
  807.         except:
  808.             pass
  809.  
  810.  
  811.     
  812.     def do_pp(self, arg):
  813.         
  814.         try:
  815.             pprint.pprint(self._getval(arg), self.stdout)
  816.         except:
  817.             pass
  818.  
  819.  
  820.     
  821.     def do_list(self, arg):
  822.         self.lastcmd = 'list'
  823.         last = None
  824.         if arg:
  825.             
  826.             try:
  827.                 x = eval(arg, { }, { })
  828.                 if type(x) == type(()):
  829.                     (first, last) = x
  830.                     first = int(first)
  831.                     last = int(last)
  832.                     if last < first:
  833.                         last = first + last
  834.                     
  835.                 else:
  836.                     first = max(1, int(x) - 5)
  837.             print >>self.stdout, '*** Error in argument:', repr(arg)
  838.             return None
  839.  
  840.         elif self.lineno is None:
  841.             first = max(1, self.curframe.f_lineno - 5)
  842.         else:
  843.             first = self.lineno + 1
  844.         if last is None:
  845.             last = first + 10
  846.         
  847.         filename = self.curframe.f_code.co_filename
  848.         breaklist = self.get_file_breaks(filename)
  849.         
  850.         try:
  851.             for lineno in range(first, last + 1):
  852.                 line = linecache.getline(filename, lineno)
  853.                 if not line:
  854.                     print >>self.stdout, '[EOF]'
  855.                     break
  856.                     continue
  857.                 s = repr(lineno).rjust(3)
  858.                 if len(s) < 4:
  859.                     s = s + ' '
  860.                 
  861.                 if lineno in breaklist:
  862.                     s = s + 'B'
  863.                 else:
  864.                     s = s + ' '
  865.                 if lineno == self.curframe.f_lineno:
  866.                     s = s + '->'
  867.                 
  868.                 print >>self.stdout, s + '\t' + line,
  869.                 self.lineno = lineno
  870.         except KeyboardInterrupt:
  871.             pass
  872.  
  873.  
  874.     do_l = do_list
  875.     
  876.     def do_whatis(self, arg):
  877.         
  878.         try:
  879.             value = eval(arg, self.curframe.f_globals, self.curframe.f_locals)
  880.         except:
  881.             (t, v) = sys.exc_info()[:2]
  882.             if type(t) == type(''):
  883.                 exc_type_name = t
  884.             else:
  885.                 exc_type_name = t.__name__
  886.             print >>self.stdout, '***', exc_type_name + ':', repr(v)
  887.             return None
  888.  
  889.         code = None
  890.         
  891.         try:
  892.             code = value.func_code
  893.         except:
  894.             pass
  895.  
  896.         if code:
  897.             print >>self.stdout, 'Function', code.co_name
  898.             return None
  899.         
  900.         
  901.         try:
  902.             code = value.im_func.func_code
  903.         except:
  904.             pass
  905.  
  906.         if code:
  907.             print >>self.stdout, 'Method', code.co_name
  908.             return None
  909.         
  910.         print >>self.stdout, type(value)
  911.  
  912.     
  913.     def do_alias(self, arg):
  914.         args = arg.split()
  915.         if len(args) == 0:
  916.             keys = self.aliases.keys()
  917.             keys.sort()
  918.             for alias in keys:
  919.                 print >>self.stdout, '%s = %s' % (alias, self.aliases[alias])
  920.             
  921.             return None
  922.         
  923.         if args[0] in self.aliases and len(args) == 1:
  924.             print >>self.stdout, '%s = %s' % (args[0], self.aliases[args[0]])
  925.         else:
  926.             self.aliases[args[0]] = ' '.join(args[1:])
  927.  
  928.     
  929.     def do_unalias(self, arg):
  930.         args = arg.split()
  931.         if len(args) == 0:
  932.             return None
  933.         
  934.         if args[0] in self.aliases:
  935.             del self.aliases[args[0]]
  936.         
  937.  
  938.     commands_resuming = [
  939.         'do_continue',
  940.         'do_step',
  941.         'do_next',
  942.         'do_return',
  943.         'do_quit',
  944.         'do_jump']
  945.     
  946.     def print_stack_trace(self):
  947.         
  948.         try:
  949.             for frame_lineno in self.stack:
  950.                 self.print_stack_entry(frame_lineno)
  951.         except KeyboardInterrupt:
  952.             pass
  953.  
  954.  
  955.     
  956.     def print_stack_entry(self, frame_lineno, prompt_prefix = line_prefix):
  957.         (frame, lineno) = frame_lineno
  958.         if frame is self.curframe:
  959.             print >>self.stdout, '>',
  960.         else:
  961.             print >>self.stdout, ' ',
  962.         print >>self.stdout, self.format_stack_entry(frame_lineno, prompt_prefix)
  963.  
  964.     
  965.     def help_help(self):
  966.         self.help_h()
  967.  
  968.     
  969.     def help_h(self):
  970.         print >>self.stdout, 'h(elp)\nWithout argument, print the list of available commands.\nWith a command name as argument, print help about that command\n"help pdb" pipes the full documentation file to the $PAGER\n"help exec" gives help on the ! command'
  971.  
  972.     
  973.     def help_where(self):
  974.         self.help_w()
  975.  
  976.     
  977.     def help_w(self):
  978.         print >>self.stdout, 'w(here)\nPrint a stack trace, with the most recent frame at the bottom.\nAn arrow indicates the "current frame", which determines the\ncontext of most commands.  \'bt\' is an alias for this command.'
  979.  
  980.     help_bt = help_w
  981.     
  982.     def help_down(self):
  983.         self.help_d()
  984.  
  985.     
  986.     def help_d(self):
  987.         print >>self.stdout, 'd(own)\nMove the current frame one level down in the stack trace\n(to a newer frame).'
  988.  
  989.     
  990.     def help_up(self):
  991.         self.help_u()
  992.  
  993.     
  994.     def help_u(self):
  995.         print >>self.stdout, 'u(p)\nMove the current frame one level up in the stack trace\n(to an older frame).'
  996.  
  997.     
  998.     def help_break(self):
  999.         self.help_b()
  1000.  
  1001.     
  1002.     def help_b(self):
  1003.         print >>self.stdout, "b(reak) ([file:]lineno | function) [, condition]\nWith a line number argument, set a break there in the current\nfile.  With a function name, set a break at first executable line\nof that function.  Without argument, list all breaks.  If a second\nargument is present, it is a string specifying an expression\nwhich must evaluate to true before the breakpoint is honored.\n\nThe line number may be prefixed with a filename and a colon,\nto specify a breakpoint in another file (probably one that\nhasn't been loaded yet).  The file is searched for on sys.path;\nthe .py suffix may be omitted."
  1004.  
  1005.     
  1006.     def help_clear(self):
  1007.         self.help_cl()
  1008.  
  1009.     
  1010.     def help_cl(self):
  1011.         print >>self.stdout, 'cl(ear) filename:lineno'
  1012.         print >>self.stdout, 'cl(ear) [bpnumber [bpnumber...]]\nWith a space separated list of breakpoint numbers, clear\nthose breakpoints.  Without argument, clear all breaks (but\nfirst ask confirmation).  With a filename:lineno argument,\nclear all breaks at that line in that file.\n\nNote that the argument is different from previous versions of\nthe debugger (in python distributions 1.5.1 and before) where\na linenumber was used instead of either filename:lineno or\nbreakpoint numbers.'
  1013.  
  1014.     
  1015.     def help_tbreak(self):
  1016.         print >>self.stdout, 'tbreak  same arguments as break, but breakpoint is\nremoved when first hit.'
  1017.  
  1018.     
  1019.     def help_enable(self):
  1020.         print >>self.stdout, 'enable bpnumber [bpnumber ...]\nEnables the breakpoints given as a space separated list of\nbp numbers.'
  1021.  
  1022.     
  1023.     def help_disable(self):
  1024.         print >>self.stdout, 'disable bpnumber [bpnumber ...]\nDisables the breakpoints given as a space separated list of\nbp numbers.'
  1025.  
  1026.     
  1027.     def help_ignore(self):
  1028.         print >>self.stdout, 'ignore bpnumber count\nSets the ignore count for the given breakpoint number.  A breakpoint\nbecomes active when the ignore count is zero.  When non-zero, the\ncount is decremented each time the breakpoint is reached and the\nbreakpoint is not disabled and any associated condition evaluates\nto true.'
  1029.  
  1030.     
  1031.     def help_condition(self):
  1032.         print >>self.stdout, 'condition bpnumber str_condition\nstr_condition is a string specifying an expression which\nmust evaluate to true before the breakpoint is honored.\nIf str_condition is absent, any existing condition is removed;\ni.e., the breakpoint is made unconditional.'
  1033.  
  1034.     
  1035.     def help_step(self):
  1036.         self.help_s()
  1037.  
  1038.     
  1039.     def help_s(self):
  1040.         print >>self.stdout, 's(tep)\nExecute the current line, stop at the first possible occasion\n(either in a function that is called or in the current function).'
  1041.  
  1042.     
  1043.     def help_next(self):
  1044.         self.help_n()
  1045.  
  1046.     
  1047.     def help_n(self):
  1048.         print >>self.stdout, 'n(ext)\nContinue execution until the next line in the current function\nis reached or it returns.'
  1049.  
  1050.     
  1051.     def help_return(self):
  1052.         self.help_r()
  1053.  
  1054.     
  1055.     def help_r(self):
  1056.         print >>self.stdout, 'r(eturn)\nContinue execution until the current function returns.'
  1057.  
  1058.     
  1059.     def help_continue(self):
  1060.         self.help_c()
  1061.  
  1062.     
  1063.     def help_cont(self):
  1064.         self.help_c()
  1065.  
  1066.     
  1067.     def help_c(self):
  1068.         print >>self.stdout, 'c(ont(inue))\nContinue execution, only stop when a breakpoint is encountered.'
  1069.  
  1070.     
  1071.     def help_jump(self):
  1072.         self.help_j()
  1073.  
  1074.     
  1075.     def help_j(self):
  1076.         print >>self.stdout, 'j(ump) lineno\nSet the next line that will be executed.'
  1077.  
  1078.     
  1079.     def help_debug(self):
  1080.         print >>self.stdout, 'debug code\nEnter a recursive debugger that steps through the code argument\n(which is an arbitrary expression or statement to be executed\nin the current environment).'
  1081.  
  1082.     
  1083.     def help_list(self):
  1084.         self.help_l()
  1085.  
  1086.     
  1087.     def help_l(self):
  1088.         print >>self.stdout, 'l(ist) [first [,last]]\nList source code for the current file.\nWithout arguments, list 11 lines around the current line\nor continue the previous listing.\nWith one argument, list 11 lines starting at that line.\nWith two arguments, list the given range;\nif the second argument is less than the first, it is a count.'
  1089.  
  1090.     
  1091.     def help_args(self):
  1092.         self.help_a()
  1093.  
  1094.     
  1095.     def help_a(self):
  1096.         print >>self.stdout, 'a(rgs)\nPrint the arguments of the current function.'
  1097.  
  1098.     
  1099.     def help_p(self):
  1100.         print >>self.stdout, 'p expression\nPrint the value of the expression.'
  1101.  
  1102.     
  1103.     def help_pp(self):
  1104.         print >>self.stdout, 'pp expression\nPretty-print the value of the expression.'
  1105.  
  1106.     
  1107.     def help_exec(self):
  1108.         print >>self.stdout, "(!) statement\nExecute the (one-line) statement in the context of\nthe current stack frame.\nThe exclamation point can be omitted unless the first word\nof the statement resembles a debugger command.\nTo assign to a global variable you must always prefix the\ncommand with a 'global' command, e.g.:\n(Pdb) global list_options; list_options = ['-l']\n(Pdb)"
  1109.  
  1110.     
  1111.     def help_quit(self):
  1112.         self.help_q()
  1113.  
  1114.     
  1115.     def help_q(self):
  1116.         print >>self.stdout, 'q(uit) or exit - Quit from the debugger.\nThe program being executed is aborted.'
  1117.  
  1118.     help_exit = help_q
  1119.     
  1120.     def help_whatis(self):
  1121.         print >>self.stdout, 'whatis arg\nPrints the type of the argument.'
  1122.  
  1123.     
  1124.     def help_EOF(self):
  1125.         print >>self.stdout, 'EOF\nHandles the receipt of EOF as a command.'
  1126.  
  1127.     
  1128.     def help_alias(self):
  1129.         print >>self.stdout, 'alias [name [command [parameter parameter ...] ]]\nCreates an alias called \'name\' the executes \'command\'.  The command\nmust *not* be enclosed in quotes.  Replaceable parameters are\nindicated by %1, %2, and so on, while %* is replaced by all the\nparameters.  If no command is given, the current alias for name\nis shown. If no name is given, all aliases are listed.\n\nAliases may be nested and can contain anything that can be\nlegally typed at the pdb prompt.  Note!  You *can* override\ninternal pdb commands with aliases!  Those internal commands\nare then hidden until the alias is removed.  Aliasing is recursively\napplied to the first word of the command line; all other words\nin the line are left alone.\n\nSome useful aliases (especially when placed in the .pdbrc file) are:\n\n#Print instance variables (usage "pi classInst")\nalias pi for k in %1.__dict__.keys(): print "%1.",k,"=",%1.__dict__[k]\n\n#Print instance variables in self\nalias ps pi self\n'
  1130.  
  1131.     
  1132.     def help_unalias(self):
  1133.         print >>self.stdout, 'unalias name\nDeletes the specified alias.'
  1134.  
  1135.     
  1136.     def help_commands(self):
  1137.         print >>self.stdout, "commands [bpnumber]\n(com) ...\n(com) end\n(Pdb)\n\nSpecify a list of commands for breakpoint number bpnumber.  The\ncommands themselves appear on the following lines.  Type a line\ncontaining just 'end' to terminate the commands.\n\nTo remove all commands from a breakpoint, type commands and\nfollow it immediately with  end; that is, give no commands.\n\nWith no bpnumber argument, commands refers to the last\nbreakpoint set.\n\nYou can use breakpoint commands to start your program up again.\nSimply use the continue command, or step, or any other\ncommand that resumes execution.\n\nSpecifying any command resuming execution (currently continue,\nstep, next, return, jump, quit and their abbreviations) terminates\nthe command list (as if that command was immediately followed by end).\nThis is because any time you resume execution\n(even with a simple next or step), you may encounter\nanother breakpoint--which could have its own command list, leading to\nambiguities about which list to execute.\n\n   If you use the 'silent' command in the command list, the\nusual message about stopping at a breakpoint is not printed.  This may\nbe desirable for breakpoints that are to print a specific message and\nthen continue.  If none of the other commands print anything, you\nsee no sign that the breakpoint was reached.\n"
  1138.  
  1139.     
  1140.     def help_pdb(self):
  1141.         help()
  1142.  
  1143.     
  1144.     def lookupmodule(self, filename):
  1145.         '''Helper function for break/clear parsing -- may be overridden.
  1146.  
  1147.         lookupmodule() translates (possibly incomplete) file or module name
  1148.         into an absolute file name.
  1149.         '''
  1150.         if os.path.isabs(filename) and os.path.exists(filename):
  1151.             return filename
  1152.         
  1153.         f = os.path.join(sys.path[0], filename)
  1154.         if os.path.exists(f) and self.canonic(f) == self.mainpyfile:
  1155.             return f
  1156.         
  1157.         (root, ext) = os.path.splitext(filename)
  1158.         if ext == '':
  1159.             filename = filename + '.py'
  1160.         
  1161.         if os.path.isabs(filename):
  1162.             return filename
  1163.         
  1164.         for dirname in sys.path:
  1165.             while os.path.islink(dirname):
  1166.                 dirname = os.readlink(dirname)
  1167.             fullname = os.path.join(dirname, filename)
  1168.             if os.path.exists(fullname):
  1169.                 return fullname
  1170.                 continue
  1171.         
  1172.  
  1173.     
  1174.     def _runscript(self, filename):
  1175.         globals_ = {
  1176.             '__name__': '__main__',
  1177.             '__file__': filename }
  1178.         locals_ = globals_
  1179.         self._wait_for_mainpyfile = 1
  1180.         self.mainpyfile = self.canonic(filename)
  1181.         self._user_requested_quit = 0
  1182.         statement = 'execfile( "%s")' % filename
  1183.         self.run(statement, globals = globals_, locals = locals_)
  1184.  
  1185.  
  1186.  
  1187. def run(statement, globals = None, locals = None):
  1188.     Pdb().run(statement, globals, locals)
  1189.  
  1190.  
  1191. def runeval(expression, globals = None, locals = None):
  1192.     return Pdb().runeval(expression, globals, locals)
  1193.  
  1194.  
  1195. def runctx(statement, globals, locals):
  1196.     run(statement, globals, locals)
  1197.  
  1198.  
  1199. def runcall(*args, **kwds):
  1200.     return Pdb().runcall(*args, **kwds)
  1201.  
  1202.  
  1203. def set_trace():
  1204.     Pdb().set_trace(sys._getframe().f_back)
  1205.  
  1206.  
  1207. def post_mortem(t):
  1208.     p = Pdb()
  1209.     p.reset()
  1210.     while t.tb_next is not None:
  1211.         t = t.tb_next
  1212.     p.interaction(t.tb_frame, t)
  1213.  
  1214.  
  1215. def pm():
  1216.     post_mortem(sys.last_traceback)
  1217.  
  1218. TESTCMD = 'import x; x.main()'
  1219.  
  1220. def test():
  1221.     run(TESTCMD)
  1222.  
  1223.  
  1224. def help():
  1225.     for dirname in sys.path:
  1226.         fullname = os.path.join(dirname, 'pdb.doc')
  1227.         if os.path.exists(fullname):
  1228.             sts = os.system('${PAGER-more} ' + fullname)
  1229.             if sts:
  1230.                 print '*** Pager exit status:', sts
  1231.             
  1232.             break
  1233.             continue
  1234.     else:
  1235.         print 'Sorry, can\'t find the help file "pdb.doc"', 'along the Python search path'
  1236.  
  1237.  
  1238. def main():
  1239.     if not sys.argv[1:]:
  1240.         print 'usage: pdb.py scriptfile [arg] ...'
  1241.         sys.exit(2)
  1242.     
  1243.     mainpyfile = sys.argv[1]
  1244.     if not os.path.exists(mainpyfile):
  1245.         print 'Error:', mainpyfile, 'does not exist'
  1246.         sys.exit(1)
  1247.     
  1248.     del sys.argv[0]
  1249.     sys.path[0] = os.path.dirname(mainpyfile)
  1250.     pdb = Pdb()
  1251.     while None:
  1252.         
  1253.         try:
  1254.             pdb._runscript(mainpyfile)
  1255.             if pdb._user_requested_quit:
  1256.                 break
  1257.             
  1258.             print 'The program finished and will be restarted'
  1259.         continue
  1260.         except SystemExit:
  1261.             print 'The program exited via sys.exit(). Exit status: ', sys.exc_info()[1]
  1262.             continue
  1263.             traceback.print_exc()
  1264.             print 'Uncaught exception. Entering post mortem debugging'
  1265.             print "Running 'cont' or 'step' will restart the program"
  1266.             t = sys.exc_info()[2]
  1267.             while t.tb_next is not None:
  1268.                 t = t.tb_next
  1269.             pdb.interaction(t.tb_frame, t)
  1270.             print 'Post mortem debugger finished. The ' + mainpyfile + ' will be restarted'
  1271.             continue
  1272.         
  1273.  
  1274.         return None
  1275.  
  1276. if __name__ == '__main__':
  1277.     main()
  1278.  
  1279.